-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Low latency DASH support #979
Low latency DASH support #979
Conversation
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for all the commit author(s) or Co-authors. If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. ℹ️ Googlers: Go here for more info. |
1 similar comment
We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for all the commit author(s) or Co-authors. If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google. ℹ️ Googlers: Go here for more info. |
Hi, I need help with the CLA agreement. I have been able to send PRs to Shaka Streamer, so I know my email When I run Do you reckon the "@users.noreply.github.com" handle from my merges is causing an issue? I peeked in Packager's commit history and saw that other people committed/merged with the "@users.noreply.github.com" handle, and I didn't see issues with their PRs, so I'm not sure that is the problem. |
Thanks Caitlin |
@CaitlinOCallaghan Thanks for the PR! I checked the CLA, here is what I got: PullRequest Sender
Commit Author(s)
So yes, the problem is with [email protected] email address. There are two options:
|
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
1 similar comment
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
I need to figure out what is wrong with the PR workflow. I'll let you know when I've figured that out. You may need to rebase/merge at that point to pick up the fix. I'll also try to give this a thorough review soon. Definitely this week. |
You should be able to fix the CI issues by rebasing/merging with the master branch now. Sorry for the inconvenience! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Thanks Joey
… On 25 Aug 2021, at 9:50 am, Joey Parrish ***@***.***> wrote:
You should be able to fix the CI issues by rebasing/merging with the master branch now. Sorry for the inconvenience!
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
…lating it for each chunk.
e029d58
to
8b168ec
Compare
@joeyparrish No worries! Thank you for the fix and approval! |
Woohoo! Thanks, Caitlin! |
Thanks again @CaitlinOCallaghan great work |
@@ -126,6 +126,8 @@ class Segmenter { | |||
virtual Status DoFinalize() = 0; | |||
virtual Status DoFinalizeSegment() = 0; | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(minor formatting)
# LL-DASH Support These changes add support for LL-DASH streaming. **NOTE:** LL-HLS support is still in progress, but it's coming. :) ## Testing `./chunking_unittest --gtest_filter="ChunkingHandlerTest.LowLatencyDash"` `./media_event_unittest --gtest_filter="MpdNotifyMuxerListenerTest.LowLatencyDash"` `./mpd_unittest --gtest_filter="PeriodTest.LowLatencyDashMpdGetXml"` `./mpd_unittest --gtest_filter="SimpleMpdNotifierTest.NotifyAvailabilityTimeOffset"` `./mpd_unittest --gtest_filter="SimpleMpdNotifierTest.NotifySegmentDuration"` `./mpd_unittest --gtest_filter="LowLatencySegmentTest.LowLatencySegmentTemplate"` Note, packager_test must be run from the main project directory `./out/Release/packager_test --gtest_filter="PackagerTest.LowLatencyDashEnabledAndUtcTimingNotSet"` `./out/Release/packager_test --gtest_filter="PackagerTest.LowLatencyDashEnabledAndUtcTimingNotSet"`
# LL-DASH Support These changes add support for LL-DASH streaming. **NOTE:** LL-HLS support is still in progress, but it's coming. :) ## Testing `./chunking_unittest --gtest_filter="ChunkingHandlerTest.LowLatencyDash"` `./media_event_unittest --gtest_filter="MpdNotifyMuxerListenerTest.LowLatencyDash"` `./mpd_unittest --gtest_filter="PeriodTest.LowLatencyDashMpdGetXml"` `./mpd_unittest --gtest_filter="SimpleMpdNotifierTest.NotifyAvailabilityTimeOffset"` `./mpd_unittest --gtest_filter="SimpleMpdNotifierTest.NotifySegmentDuration"` `./mpd_unittest --gtest_filter="LowLatencySegmentTest.LowLatencySegmentTemplate"` Note, packager_test must be run from the main project directory `./out/Release/packager_test --gtest_filter="PackagerTest.LowLatencyDashEnabledAndUtcTimingNotSet"` `./out/Release/packager_test --gtest_filter="PackagerTest.LowLatencyDashEnabledAndUtcTimingNotSet"`
LL-DASH Support
These changes add support for LL-DASH streaming.
While writing this feature, I have been checking in with @joeyparrish to get feedback along the way. See the original PRs here.
NOTE: LL-HLS support is still in progress, but it's coming. :)
Testing
./chunking_unittest --gtest_filter="ChunkingHandlerTest.LowLatencyDash"
./media_event_unittest --gtest_filter="MpdNotifyMuxerListenerTest.LowLatencyDash"
./mpd_unittest --gtest_filter="PeriodTest.LowLatencyDashMpdGetXml"
./mpd_unittest --gtest_filter="SimpleMpdNotifierTest.NotifyAvailabilityTimeOffset"
./mpd_unittest --gtest_filter="SimpleMpdNotifierTest.NotifySegmentDuration"
./mpd_unittest --gtest_filter="LowLatencySegmentTest.LowLatencySegmentTemplate"
Note, packager_test must be run from the main project directory
./out/Release/packager_test --gtest_filter="PackagerTest.LowLatencyDashEnabledAndUtcTimingNotSet"
./out/Release/packager_test --gtest_filter="PackagerTest.LowLatencyDashEnabledAndUtcTimingNotSet"
Documentation